body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  scroll-behavior: smooth;
}
.home-page {
  min-height: 100vh;
  background: linear-gradient(90deg, #bae794 0%, #56c5a9 50%, #1db1bb 100%);
  display: flex;
  flex-direction: column;
}
.home-header {
  display: flex;
  height:10vh;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  position: relative;
  z-index: 1000;
}
.logo {
  height: 150px;
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  margin-left: auto;
  position: relative;
  right: 2rem;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.home-nav {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  width: 25vh;
  height: 100vh;
  background: white;
  flex-direction: column;
  padding: 3rem 2rem;
  gap: 1.5rem;
  display: none;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  align-items: center;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.home-nav.active {
  display: flex;
  transform: translateX(0);
}
.home-nav a {
  color: #666;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  padding: 0.75rem 0;
  text-align: left;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.home-nav a:hover {
  color: #333;
}

.auth-buttons {
  position: relative;
  bottom: 2rem;
  left: 0;
  right: 0;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem 2rem;
  justify-content: flex-start;
  display: none;
  margin-top: 0;
  border-top: none;
  gap: 1rem;
}
.auth-buttons.active {
  display: flex;
}
.auth-buttons a {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
}

.login {
  background-color: #1fb4ba;
  color: white;
  font-family: "Montserrat", sans-serif;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  min-width: auto;
}

.signup {
  background-color: transparent;
  color: #666;
  border: 1px solid #666;
  font-family: "Montserrat", sans-serif;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.login:hover,
.signup:hover {
  opacity: 0.9;
}

/* .peprofy-box {
  font-size: 4.9rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  border: 2px dashed #008cba;
  padding: 0.5rem 1rem;
  display: inline-block;
  position: relative;
  left: 100%;
} */
.peprofy-box {
  font-size: 7.9rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  /* border: 2px dashed #008cba; */
  padding: 0.5rem 1rem;
  display: inline-block;
  position: relative;

  /* 🔽 Control these values to move text */
  top: var(--move-top, 0px);
  left: var(--move-left, 0px);
  transform: translate(var(--move-x, 700px), var(--move-y, 200px));
  transition: all 0.3s ease-in-out;
}

.homepage {
  padding-top: 30px;
  padding-left: 90px;
  padding-right: 90px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  font-family: "Poppins";
  font-size: 20px;
  min-height: calc(100vh-120px);
}
.row-section {
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.homepage h1 {
  font-size: 2.9em;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
}

.homepage-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.background-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  overflow: hidden;
}
.background-items img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.try-btn {
  background-color: #1fb4ba;
  padding-top: 90px;
  padding: 20px 45px;
  font-family: "Montserrat";
  color: white;
  text-decoration: none;
  display: inline-block;
  width: auto;
  border-radius: 40px;
  position: relative;
  bottom: 32%;
}
.try-btn,
.drag-btn {
  margin: 10px;
  position: static;
}

.drag-btn {
  background-color: transparent;
  padding-top: 90px;
  padding: 20px 45px;
  font-family: "Poppins";
  font-size: large;
  color: white;
  text-decoration: none;
  position: relative;
  right: 15%;
  bottom: 32%;
  border: transparent;
}

/* WHAT WE PROVIDE */
.info {
  background-color: #fff;
  padding: 60px;
}

.info h1 {
  display: flex;
  margin-left: 30px;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "Poppins";
  margin-bottom: 30px;
  color: #000;
  position: relative;
  padding-bottom: 0;
}

.info h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 35%;
  height: 2px;
  background-color: #000;
}

.pen-image {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.list {
  list-style-type: none;
}

.list li {
  position: relative;
  padding-left: 130px;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: "Poppins";
  line-height: 1.4;
  color: #000000;
  text-align: left;
  font-weight: 500;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 100px;
  color: #000;
  font-size: 39px;
  line-height: 1;
  top: 0;
}

/*Rating*/
.rating-flex {
  width: 100%;
  height: 150px;
  background-color: #1a9089;
  margin-top: 400px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.stat {
  text-align: center;
}
.stat h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-family: poppins;
  font-weight: normal;
}
.stat p {
  margin-top: 0;
  font-size: 14px;
}

/* Subscription */
.subscription {
  text-align: center;
  padding: 20px 10px;
  background-color: #f0f0f0;
}

.subscription h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: lighter;
  font-family: "Poppins";
}

.subscription p {
  margin-bottom: 30px;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-weight: 200px;
}

.subscription button {
  background-color: #20b2aa;
  font-family: "Poppins";
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 15px;
}

.subscription button:hover {
  background-color: #1a9089;
}

.container {
  background-color: #20a596;
  max-width: 100%;

  height: 280px;
  margin: 0 auto;
  padding: 20px;
}
.main {
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}
.main h2 {
  font-size: 50px;
  margin-bottom: 20px;
  margin-top: 40px;
  font-family: Poppins;
  font-weight: lighter;
}
.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.background-element {
  position: absolute;
  background-color: #5cc6b6;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
.plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.plan {
  background: linear-gradient(180deg, #ffffff 0%, #bafff9 100%);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 350px;
  margin-top: 2%;
}
.plan h3 {
  margin-top: 10px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  color: #32b9be;
}
.plan .price {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}
.plan .discount {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1ea7a7;
  color: #fff;
  text-decoration: none;
  border-color: #1ea7a7;
  width: 200px;
  margin-bottom: 20px;
  font-family: "Poppins";
}
.plan ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.plan li {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}
.tag-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.feature-item {
  text-align: left;
  display: flex;
  align-items: center;
}
.features {
  text-align: center;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.feature-item {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #444;
}

/* Footer Styles */
.footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 20px 0 0 0;
  position: relative;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer img.logo {
  width: 130px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  gap: 100px;
}
.footer-column p {
  margin: 15px 0 15px 0;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
}
.footer-bottom {
  text-align: center;
  padding: 10px 0;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #fff;
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 480px) {
  .home-header {
    padding: 1rem;
    justify-content: space-between;
  }

  .auth-buttons a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .peprofy-box {
    font-size: 2.5rem;
    padding: 0.3rem 0.8rem;
  }
  .logo {
    height: 100px;
  }

  .home-nav {
    width: 20vh;
    height: 100vh;
    gap: 1rem;
    background-color: white;
  }
  .mobile-menu-btn {
    right: 0.5rem;
  }

  .mobile-menu-btn.active {
    right: 0.5rem;
  }

  .list li {
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .list li::before {
    left: 10px;
    font-size: 24px;
    top: -2px;
  }
  .peprofy-box {
    font-size: 2rem;
  }
  .homepage h1 {
    font-size: 1.5rem;
  }
  .home-nav a,
  .auth-buttons a {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .homepage {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 80px;
  }
  .main h2 {
    font-size: 36px;
    margin-top: 20px;
  }

  .plan h3 {
    font-size: 32px;
  }

  .plan .price {
    font-size: 32px;
  }

  .rating-flex {
    height: auto;
    min-height: 100px;
    padding: 20px 0;
  }
  .homepage-buttons {
    gap: 1rem;
    margin-top: 1rem;
  }
  .try-btn,
  .drag-btn {
    max-width: 240px;
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .footer {
    padding: 20px 10px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-column p {
    font-size: 0.8rem;
  }
}

@media (max-width: 1300px) {
  .auth-buttons {
    margin-top: 20px;
  }
  .home-nav {
    width: 20vh;
    height: 50vh;
  }

  .homepage {
    flex-direction: column;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
  }
  .homepage-content {
    max-width: 100%;
  }
  .homepage h1 {
    font-size: 2.5em;
  }
  .peprofy-box {
    font-size: 3.5rem;
    left: 0;
  }

  .auth-buttons a {
    width: 70px;
    font-size: 12px;
  }

  .try-btn {
    padding: 15px 30px;
  }
}
@media (max-width: 768px) {
  .home-page {
    min-height: 100vh;
  }
  .homepage {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
  }
  .home-nav {
    width: 20vh;
    height: 50vh;
    gap: 1rem;
    background-color: white;
  }
  .home-header {
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
  }
  .home-nav a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .auth-buttons a {
    padding: 0.4rem 1rem;
    min-width: 70px;
    font-size: 0.8rem;
  }
  .peprofy-box {
    font-size: 2.8rem;
    top: 0;
  }
  .degreecap {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .degreecap img {
    position: static;
    transform: none;
    width: 150px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .logo {
    height: 170px;
    margin: 0;
    align-self: center;
  }
  .row-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
  }
  .homepage h1 {
    font-size: 2.5rem;
  }
  .homepage-buttons {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  .try-btn,
  .drag-btn {
    width: auto;
    max-width: 280px;
    padding: 15px 30px;
    margin: 0;
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    height: auto;
    padding-bottom: 200px;
  }
  .background-element {
    display: flex;
  }
  .plans {
    flex-direction: column;
    align-items: center;
  }
  .plan {
    width: 100%;
    max-width: 280px;
  }
  .rating-flex {
    margin-top: 20px;
    position: relative;
    z-index: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .home-nav.active {
    display: flex;
  }

  .peprofy-box {
    position: static;
    font-size: 2.5rem;
    margin: 1rem auto;
    transform: none;
    left: 0;
    top: 0;
    width: fit-content;
  }

  .try-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .homepage h1 {
    font-size: 2em;
  }

  .info h1 {
    font-size: 20px;
  }

  .list li {
    padding-left: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .list li::before {
    left: 15px;
    font-size: 30px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .footer img.logo {
    position: static;
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    align-self: center;
  }
  .footer-column {
    width: 100%;
  }
}

